'Declaration
Public Overloads Sub SubscribeNode( _ ByVal active As Boolean, _ ByVal node As Object, _ ByVal modellingTagsPredicate As Predicate(Of IEnumerable(Of String)) _ )
'Usage
Dim instance As UAModelClient Dim active As Boolean Dim node As Object Dim modellingTagsPredicate As Predicate(Of IEnumerable(Of String)) instance.SubscribeNode(active, node, modellingTagsPredicate)
public void SubscribeNode( bool active, object node, Predicate<IEnumerable<string>> modellingTagsPredicate )
public: void SubscribeNode( bool active, Object^ node, Predicate<IEnumerable<String^>^>^ modellingTagsPredicate )
Parameters
- active
true
to subscribe;false
to unsubscribe.- node
- The node on which the operation will be performed.
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - modellingTagsPredicate
- The operation will be performed only on members whose tags satisfy this predicate.
The value of this parameter cannot be
null
(Nothing
in Visual Basic).